home *** CD-ROM | disk | FTP | other *** search
/ PC Player 2004 May / pc player 2004-05.iso / Demos / FarCry / Data1.cab / _FBC034B5187B48899E041A360713E023 < prev    next >
Encoding:
Text File  |  2004-01-06  |  466 b   |  18 lines

  1.       #include "../CGVPMacro.csi"
  2.  
  3.       MainInput { uniform sampler2D baseMap : texunit0,
  4.                   uniform sampler2D modMap : texunit1 }
  5.       DeclarationsScript
  6.       {
  7.         OUT_T0_T1_C0
  8.         FOUT
  9.       }
  10.       CoreScript
  11.       {
  12.         // load the decal
  13.         float4 sunColor = tex2D(baseMap, IN.Tex0.xy);
  14.         float4 modColor = tex2D(modMap, IN.Tex1.xy);
  15.         OUT.Color = sunColor * modColor.a * IN.Color;
  16.       }
  17.       
  18.